T
LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
GetWorkstsationControl<T>(String) Method
See Also 
Leadtools.Medical.Workstation.UI.Factory Namespace > WorkstationUIFactory Class > GetWorkstsationControl Method : GetWorkstsationControl<T>(String) Method




name
The name of the control to look at its actual type to create.
name
The name of the control to look at its actual type to create.
Creates a UI medical workstation control by a given name.

Syntax

Visual Basic (Declaration) 
Overloads Public Function GetWorkstsationControl(Of T As Control)( _
   ByVal name As String _
) As T
Visual Basic (Usage)Copy Code
Dim instance As WorkstationUIFactory
Dim name As String
Dim value As T
 
value = instance.GetWorkstsationControl(Of T)(name)
C# 
public T GetWorkstsationControl<T>( 
   string name
)where T: Control
Managed Extensions for C++ 
public: T* GetWorkstsationControl<T>( 
   string* name
) where T: Control
C++/CLI 
public:
T^ GetWorkstsationControlgeneric<typename T>
( 
   String^ name
) where T: Control

Parameters

name
The name of the control to look at its actual type to create.

Type Parameters

T

Return Value

T is the type of the returned System.Windows.Forms.Control

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also